From f02c18fff786578ae73581e8d329d2d2e91e7142 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Tue, 31 Mar 2009 11:49:56 +0100 Subject: [PATCH] xend: Return True from device_update when cfg_xenapi When device_update is called by using cfg_xenapi, this patch returns True. Signed-off-by: Masaki Kanno --- tools/python/xen/xend/XendConfig.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/python/xen/xend/XendConfig.py b/tools/python/xen/xend/XendConfig.py index f7bc850f9e..e195ab1060 100644 --- a/tools/python/xen/xend/XendConfig.py +++ b/tools/python/xen/xend/XendConfig.py @@ -1912,6 +1912,7 @@ class XendConfig(dict): for key, val in cfg_xenapi.items(): dev_info[key] = val self['devices'][dev_uuid] = (dev_type, dev_info) + return True return False -- 2.30.2